home *** CD-ROM | disk | FTP | other *** search
-
-
-
-
-
-
- SPLIT(1L) SPLIT(1L)
- NAME
- split - split a file into pieces
- SYNOPSIS
- split [-lines] [-l lines] [-b bytes[bkm]] [-C bytes[bkm]]
- [+lines=lines] [+bytes=bytes[bkm]] [+line-bytes=bytes[bkm]]
- [infile [outfile-prefix]]
- DESCRIPTION
- This manual page documents the GNU version of split. split
- creates one or more output files (as many as necessary) con-
- ______ taining consecutive sections of the infile, or the standard
- input if none is given or the name `-' is given. By
- default, split puts 1000 lines of the input file, or what-
- ever is left if it is less than that, into each output file.
- The output file names consist of a prefix followed by a
- group of letters, chosen so that concatenating the output
- files in sorted order by file name produces the original
- input file, in order. The default output file name prefix
- _______ ______ is `x'. If the outfile-prefix argument is given, it is used
- as the output file name prefix instead.
- OPTIONS
- _____ _ _____ _____ _____ -lines, -l lines, +lines=lines
- _____ Put lines lines of the input file into each output
- file.
- _ _____ ___ _____ _____ ___ -b bytes[bkm], +bytes=bytes[bkm]
- _____ Put bytes bytes of the input file into each output
- _____ file. bytes is a nonzero integer, optionally followed
- by one of the following characters to specify a dif-
- ferent unit.
- b 512-byte blocks.
- k 1-kilobyte blocks.
- m 1-megabyte blocks.
- _ _____ ___ ____ _____ _____ ___ -C bytes[bkm], +line-bytes=bytes[bkm]
- Put into each output file as many complete lines of the
- _____ input file as is possible without exceeding bytes
- _____ bytes. If a line that is longer than bytes bytes
- _____ occurs, put bytes bytes of it into each output file
- _____ until less than bytes bytes of the line are left, then
- _____ continue normally. bytes has the same format as for
- _____ the +bytes option.
- Page 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-